home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Pascal Super Library
/
Pascal Super Library (CW International)(1997).bin
/
LIBRARY
/
SHDK_2
/
TESTSHDK.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1992-05-17
|
2KB
|
79 lines
{$I SHDEFINE.INC}
{$IFDEF Gen87}
{$N+,E+}
{$ELSE}
{$N-}
{$ENDIF}
{$IFNDEF EmulationOK}
{$E-}
{$ENDIF}
{$F+}
program TestShdk;
{
Test suite driver
for the
SkyHawk Developer's ToolKit.
Copyright 1991 Madison & Associates
All Rights Reserved
This program source file and the associated executable
file may be used and distributed only in accordance
with the provisions described on the title page of
the accompanying documentation file
SKYHAWK.DOC
}
uses
{$IFDEF OverlaysOK}
OverShdk,
Overlay,
{$ENDIF}
TestDrvr, Dos,
TestBetw, TestCmpx, TestColr, TestCrc, TestDate,
TestFin, TestList, TestUtil,
ShClrDef, ShCmplx, ShCrcChk, ShDatPk, ShFinanc,
ShList, ShUtilPk,
TPString, TpCrt, TPCmd, TpDos, TpEdit,
TpMemChk, TpWindow, TPMenu,
ShErrMsg, ExecSwap;
{$IFDEF OverlaysOK}
{$O DOS}
{$O TESTBETW}
{$O TESTCMPX}
{$O TESTCOLR}
{$O TESTCRC}
{$O TESTDATE}
{$O TESTFIN}
{$O TESTLIST}
{$O TESTUTIL}
{$O SHCLRDEF}
{$O SHCMPLX}
{$O SHCRCCHK}
{$O SHDATPK}
{$O SHFINANC}
{$O SHLIST}
{$O TPDOS}
{$O TPEDIT}
{$O TPMEMCHK}
{$O TPWINDOW}
{$ENDIF}
begin
InitExecF := InitExecSwap;
ExecSwapF := ExecWithSwap;
DoTests;
end.